home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / GW AdaEd 1.4.2 / GWAdaDemos / Spider / DRAW9.ADA < prev    next >
Text File  |  1994-01-11  |  202b  |  17 lines

  1. WITH Spider; USE Spider;
  2. PROCEDURE Drawing9 IS
  3. BEGIN 
  4. Start;
  5. Black;
  6. WHILE NOT AtWall LOOP
  7.      Step;
  8. END LOOP;
  9.  
  10. Turn;  Step;  Turn;  Red;
  11.  
  12. WHILE NOT AtWall LOOP
  13.      Step;
  14. END LOOP;
  15. Quit;
  16. END Drawing9;
  17.